home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 1116.ZIP / TOOLKIT.ARC / CLS550.H < prev    next >
Text File  |  1979-12-31  |  438b  |  17 lines

  1.  
  2. /*
  3.    CLS550.H   written by Wayne Pearson
  4.    This is a clearscreen() alternative for Sanyo MBC-550 and other
  5.           not-so-PC-compatibles that use different video RAM area.
  6.    This Small C header file uses the BIOS to clear the CRT screen.
  7.    The cursor ends up in the home position (0,0) on the CRT screen.
  8. */
  9.  
  10. cls550()
  11.          {
  12.            int10(6,0,7,0,0,0,24,79);
  13.            int10(2,0,0,0,0,0,0,0);
  14.          }
  15.  
  16.  
  17.